home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Modules / BackSpaceModules / Source / Words / wraps.psw < prev   
Text File  |  1993-06-27  |  386b  |  23 lines

  1.  
  2.  
  3. defineps PSdostuff(char *word;float x1,y1,x2,y2,x3,y3,red,green,blue)
  4.     1 setgray
  5.     x1 y1 moveto
  6.     (word) show
  7.     0 setgray
  8.     x2 y2 moveto
  9.     (word) show
  10.     red green blue setrgbcolor
  11.     x3 y3 moveto
  12.     (word) show
  13. endps
  14.  
  15. defineps PSdostuffnowhite(char *word;float x1,y1,x2,y2,x3,y3,red,green,blue)
  16.     0 setgray
  17.     x2 y2 moveto
  18.     (word) show
  19.     red green blue setrgbcolor
  20.     x3 y3 moveto
  21.     (word) show
  22. endps
  23.